{% extends 'client_portal/base.html' %}{% load portal_tags %}{% block content %}

CENTRO DE SUPORTE

Tickets

Converse diretamente com a equipa e acompanhe cada pedido.
{% if portal_access.can_manage_tickets %}+ Novo ticket{% endif %}
{% for ticket in tickets %}
{{ ticket.reference }}

{{ ticket.subject }}

{{ ticket.get_category_display }} · Atualizado {{ ticket.last_activity_at|date:'d/m/Y H:i' }}

{% if ticket.unread_for_client %}{{ ticket.unread_for_client }} nova{{ ticket.unread_for_client|pluralize:'s' }}{% endif %}
{{ ticket.get_priority_display }}{{ ticket.get_status_display }}
{% empty %}
Ainda não existem tickets. Crie um pedido sempre que precisar da nossa ajuda.
{% endfor %}
{% endblock %}